home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / ALLOC / REALLOC.C < prev    next >
C/C++ Source or Header  |  1996-07-06  |  173b  |  11 lines

  1. #include <stdlib.h>
  2. #include <string.h>
  3.  
  4. void *realloc(void *buf, size_t size)
  5. {
  6.     char *ptr;
  7.     ptr = malloc(size);
  8.     memcpy(ptr,buf,size);
  9.     free(buf);
  10.     return ptr;
  11. }